home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH3 / sizeshape.cs < prev    next >
Text File  |  2006-06-28  |  615b  |  19 lines

  1. // ========================================================================
  2. //  sizeshape.cs
  3. //
  4. //  This module contains a function for scaling a specified shape.
  5. // ========================================================================
  6.  
  7.  
  8. function SizeShape(%shape, %scale)
  9. // ----------------------------------------------------
  10. //     moves the %shape by %scale amount
  11. // ----------------------------------------------------
  12. {
  13.    echo ("SizeShape: shape id: ", %shape);
  14.    echo ("SizeShape: angle: ", %scale);
  15.    %shape.setScale(%scale SPC %scale SPC %scale);
  16.    echo ("SizeShape: done.");
  17. }
  18.  
  19.